home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
window
/
tegl
/
intropak
/
twhello.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-04-06
|
409 b
|
22 lines
/* -- simplest program using high level windows */
#include "teglsys.h"
winframeptr wf;
void main(void)
{
tweasystart(); /* -- simple startup */
twinit(&wf,100,100,400,250); /* -- creates & initializes */
twsetheader(wf,"Hello World"); /* -- set up individual items */
twdrawwindowframe(wf); /* -- draw it the first time */
teglsupervisor();
}